.related-news-heading {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.related-news-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-news-card {
    background: var(--on-background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    text-decoration: none;
    color: var(--primary-text-color);
    transition: 0.3s;
}

.related-news-card:hover {
    border-color: var(--border-color);
    background: var(--background-color);
}

.related-news-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.related-news-preview {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.3;
}
